home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2003 November A / PCWK1103A.iso / ABBYY FineReader 7.0 PRO / data1.cab / Readme.txt < prev    next >
Text File  |  2002-12-03  |  3KB  |  93 lines

  1.  
  2.     PDF2BMP is simple utility that converts Adobe Portable Document File (PDF) 
  3.     into Windows Bitmap file (BMP).
  4.     Copyright (c) 2002, ATAPY Software. All rights reserved.
  5.  
  6.     This file is part of Pdf2Bmp. 
  7.     
  8.     Pdf2Bmp is free software; you can redistribute it and/or modify
  9.     it under the terms of the GNU General Public License as published by
  10.     the Free Software Foundation; either version 2 of the License, or
  11.     (at your option) any later version.
  12.  
  13.     Pdf2Bmp is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.     GNU General Public License for more details.
  17.  
  18.     You should have received a copy of the GNU General Public License
  19.     along with this program; if not, write to the Free Software
  20.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  
  22.     Pdf2Bmp uses GNU Ghostscript 7.05. Portions Copyright (C) 2001 artofcode LLC, All rights reserved.
  23.     This software is based in part on the work of the Independent JPEG Group.
  24.     
  25.     GNU Ghostscript is distributed in the hope that it will be useful, but
  26.     WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  27.     to anyone for the consequences of using it or for whether it serves any
  28.     particular purpose or works at all, unless he says so in writing.  Refer
  29.     to the GNU General Public License for full details.
  30.  
  31.     Everyone is granted permission to copy, modify and redistribute GNU
  32.     Ghostscript, but only under the conditions described in the GNU General
  33.     Public License.  A copy of this license is supposed to have been given
  34.     to you along with GNU Ghostscript so you can know your rights and
  35.     responsibilities.  It is contained within a file named COPYING.  Among other
  36.     things, the copyright notice and this notice must be preserved on all
  37.     copies.
  38.  
  39.  
  40. Command line syntax:
  41.  
  42.     Pdf2Bmp.exe /c:(command) /s:(sourceFileName) /d:(destinationFileName) /p:(page) /f:format /rx:(xRes) /ry:(yRes)
  43.     
  44.     command: count|print
  45.         count - getPageCount
  46.         print - printPageToFile
  47.     sourceFileName: source pdf-file name
  48.     destinationFileName: destination bmp-file name
  49.         if command == count file consists of the string with number of pages (for example "100")
  50.         if command == print file is bmp-file
  51.     page: pagenumber
  52.         if command == print - number of pages in pdf-file
  53.     format: output file format
  54.         if command=print - bmpmono, bmpgray or bmp16m
  55.     xRes, yRes: resolution
  56.         if command == print - the resolution of bmp-file
  57.  
  58.     Return values:
  59.         If succeeded the return value is 0.
  60.         If failed the return value is negative. See pdf2bmp.h for the description of error values.
  61.  
  62. Running:
  63.  
  64.     Pdf2Bmp invokes GhostScript without specifying any search path. So executable Pdf2Bmp.exe 
  65.     should be located in GhostScript executable folder. Otherwise GhostScript paths should be set via 
  66.     environment variables.
  67.  
  68.  
  69. Building Pdf2Bmp project:
  70.  
  71.     The source tree of Pdf2Bmp project:
  72.     Pdf2Bmp.dsp
  73.     Readme.txt
  74.     Inc/Pdf2Bmp.h
  75.     Src/Pdf2Bmp.cpp
  76.     Src/GS651Wrp.h
  77.     Src/GS651Wrp.cpp
  78.     Src/GS705Wrp.h
  79.     Src/GS705Wrp.cpp
  80.     Src/GSDLL.h
  81.     Src/Tools.h
  82.     Src/Tools.cpp
  83.  
  84. Changes in GhostScript:
  85.  
  86.     Some changes were made to the GhostScript 7.05 source code.
  87.     These changes concern the following GhostScript source files:
  88.     
  89.     pdf_font.ps
  90.     gs_fonts.ps
  91.     pdf_main.ps
  92.  
  93.     See the comments inside these files for the description of particular changes.